home *** CD-ROM | disk | FTP | other *** search
/ Ray Dream Studio / Ray Dream Studio (CDRAYD1) (Ray Dream) (1995).iso / DREAMSDK.WIN / INCLUDE / EVXALLOC.H < prev    next >
C/C++ Source or Header  |  1995-11-06  |  229b  |  10 lines

  1. #ifndef __EVXALLOC__
  2. #define __EVXALLOC__
  3.  
  4. void* RDcalloc (unsigned long nmemb, unsigned long size);
  5. void RDfree (void* ptr);
  6. void* RDmalloc (unsigned long size);
  7. void* RDrealloc (void* ptr, unsigned long size);
  8.  
  9. #endif
  10.